home *** CD-ROM | disk | FTP | other *** search
/ Whiteline: Alpha / Whiteline Alpha.iso / linux / atari / source / source.lzh / atari-linux-0.01pl3 / fs / minix / Makefile < prev    next >
Encoding:
Makefile  |  1994-06-05  |  572 b   |  26 lines

  1. # Makefile for 680x0 Linux minix filesystem source directory
  2. #
  3. # Copyright 1993 by Hamish Macdonald
  4. #
  5. # This file is subject to the terms and conditions of the GNU General Public
  6. # License.  See the file "README.legal" in the main directory of this archive
  7. # for more details.
  8.  
  9. include ../../MakeVars
  10.  
  11. OBJS=    bitmap.o truncate.o namei.o inode.o \
  12.     file.o dir.o symlink.o fsync.o
  13.  
  14. minix.o: $(OBJS)
  15.     $(LD) -r -o minix.o $(OBJS)
  16.  
  17. dep:
  18.     $(CPP) -M $(INCFLAGS) *.c > .depend
  19.  
  20. #
  21. # include a dependency file if one exists
  22. #
  23. ifeq (.depend,$(wildcard .depend))
  24. include .depend
  25. endif
  26.